home *** CD-ROM | disk | FTP | other *** search
/ Ultra Pack / UltraComputing Technology Demos and Tools.iso / WWW / se.install.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1996-03-22  |  206b  |  17 lines

  1. #! /bin/sh
  2. #set -x
  3.  
  4. FALSE=0
  5. TRUE=1
  6.  
  7.  
  8. if [ -w /opt ]  
  9. then 
  10.     echo Installing RICHPse in  /opt
  11.     cd $ULTRA_PACK_HOME/se/opt
  12.     find RICHPse -print | cpio -pdm /opt
  13. else 
  14.     echo No write access to /opt
  15. exit 1
  16. fi
  17.